import { Metadata } from "next" import { Separator } from "@/components/ui/separator" import { SidebarNav } from "@/components/layout/sidebar-nav" export const metadata: Metadata = { title: "Settings", // description: "Advanced form example using react-hook-form and Zod.", } interface SettingsLayoutProps { children: React.ReactNode params: { lng: string } } export default async function SettingsLayout({ children, params, }: { children: React.ReactNode params: { lng: string } }) { const resolvedParams = await params const lng = resolvedParams.lng const sidebarNavItems = [ { title: "Account", href: `/${lng}/evcp/settings`, }, { title: "Preferences", href: `/${lng}/evcp/settings/preferences`, } ] return ( <>
Manage your account settings and preferences.
*/}